home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol06 / 03 / lanman3 / runtime.h < prev    next >
Text File  |  1991-05-01  |  650b  |  21 lines

  1. //=================================================================
  2. //  RUNTIME.H
  3. //
  4. //  This file contains definitions for named pipe and pbx
  5. //  functions. The functions are as follows:
  6. //
  7. //  PbxRegister()
  8. //  PbxConnect()
  9. //  PbxSearch()
  10. //  OpenPipe()
  11. //  PeekPipe()
  12. //=================================================================
  13.  
  14. WORD PbxRegister(int hPipe, LPSTR szName, WORD wClientId);
  15. WORD PbxConnect(int hPipe, LPSTR szName, WORD wClientId);
  16. WORD PbxSearch(LPSTR szPbxName);
  17.  
  18. WORD OpenPipe(int *phPipe, LPSTR szPipeName);
  19. WORD PeekPipe(int hPipe, LPVOID buf, WORD nBytes,
  20.           LPWORD nBytesRead, LPWORD nAvail);
  21.